#input
Description: Get input.
def input(prompt='') -> str:
'''
Get input
:param prompt: Prompt text
:return: The input string
'''
Example:
text = input('Please enter:')
print('You entered:', text)
About 432 letters
About 2 minutes
Description: Get input.
def input(prompt='') -> str:
'''
Get input
:param prompt: Prompt text
:return: The input string
'''
Example:
text = input('Please enter:')
print('You entered:', text)
Created in 6/9/2025
Updated in 6/9/2025